home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form main2
- BackColor = &H00000000&
- BorderStyle = 0 'None
- Caption = "CDXVB-Demo"
- ClientHeight = 7200
- ClientLeft = 105
- ClientTop = 105
- ClientWidth = 8880
- LinkTopic = "Form1"
- ScaleHeight = 480
- ScaleMode = 3 'Pixel
- ScaleWidth = 592
- ShowInTaskbar = 0 'False
- StartUpPosition = 3 'Windows Default
- Attribute VB_Name = "main2"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Private Sub Form_Click()
- bActive = False
- End Sub
- Private Sub Form_Load()
- bActive = True
- Dim ct As Long, nt As Long
- Set myFPS = New CDXVBFPS
- Call DDrawCode.InitDDraw
- Call DInputCode.InitDInput
- Call DSoundCode.InitDSound
- Call CDMusic.InitCDMusic
-
-
- While (bActive)
- DoEvents
-
- myFPS.GetFPS
-
- Call DInputCode.HandleInput
- Call DDrawCode.RenderMe
- Wend
-
-
- myScreen.ShowMouse
- myInput.UnAcquire
- CDMusic.TerminateCDMusic
-
- Unload Me
- End Sub
-